-
Notifications
You must be signed in to change notification settings - Fork 12.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove source_span_untracked
#108034
Remove source_span_untracked
#108034
Conversation
it only has one caller, and we can avoid query dep tracking and still call the query
@bors try @rust-timer queue |
This comment has been minimized.
This comment has been minimized.
⌛ Trying commit db2679d with merge c2c12d8821286c83f8a6be184c16637b4f1a4327... |
💔 Test failed - checks-actions |
random github/network failure @bors try @rust-timer queue |
This comment has been minimized.
This comment has been minimized.
⌛ Trying commit db2679d with merge 49fba494c1bcbeab1e5159e294496594dc21fa56... |
☀️ Try build successful - checks-actions |
This comment has been minimized.
This comment has been minimized.
A job failed! Check out the build log: (web) (plain) Click to see the possible cause of the failure (guessed by this bot)
|
Finished benchmarking commit (49fba494c1bcbeab1e5159e294496594dc21fa56): comparison URL. Overall result: ❌ regressions - ACTION NEEDEDBenchmarking this pull request likely means that it is perf-sensitive, so we're automatically marking it as not fit for rolling up. While you can manually mark this PR as fit for rollup, we strongly recommend not doing so since this PR may lead to changes in compiler perf. Next Steps: If you can justify the regressions found in this try perf run, please indicate this with @bors rollup=never Instruction countThis is a highly reliable metric that was used to determine the overall result at the top of this comment.
Max RSS (memory usage)This benchmark run did not return any relevant results for this metric. CyclesResultsThis is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.
|
The additional query call has a noticeable performance regression for decoding datastructures that contain a
|
An query accessor optimized for non-tracked access wouldn't be hard to add, however this encoding scheme with internal query usage does seem quite questionable. The current scheme does seem good for performance and if the goal is to move |
yea. Ideally we'd move the resolver into a query and return the |
We should probably check that |
it only has one caller, and we can avoid query dep tracking and still call the query
r? @ghost (I want to perf test this first)